• Isadora
  • Get it
  • Forum
  • Help
  • ADD-ONS
  • Newsletter
  • Impressum
  • Dsgvo
  • Impressum
Forum
    • Categories
    • Recent
    • Popular
    • Tags
    • Register
    • Login
    1. Home
    2. Tags
    3. control panel
    Log in to post
    • All categories
    • BennnidB

      [LOGGED] Writing a comment on a fader

      Feature Requests
      • comment control panel • • Bennnid
      8
      0
      Votes
      8
      Posts
      661
      Views

      WolandW

      @dusx said:

       I have added this to our feature request database.

      Noooo it was already in there once as FR-67 😭

      (I deleted your duplicate entry)

    • BennnidB

      [LOGGED] Matrix value receive: edit chanel map > how to access it from control panel?

      Feature Requests
      • dmx control panel actors lights • • Bennnid
      5
      1
      Votes
      5
      Posts
      480
      Views

      BennnidB

      @woland

      that's great, thanks you so much !

    • I

      [ANSWERED] Control Panel Indication

      How To... ?
      • control control panel • • iblock
      3
      0
      Votes
      3
      Posts
      337
      Views

      JuriaanJ

      @dusx said:

      more for shutter status? 

      %1AVMT ?

      Class 1 command.

    • BennnidB

      Izzy app, sync control panel on an app?

      Interfacing
      • app control panel osc tablet • • Bennnid
      4
      0
      Votes
      4
      Posts
      446
      Views

      jfgJ

      @bennnid

      for that purpose you can use the "Add password protection" in menu "File".

      Here from the User Manual:

      Saving Files as Run-Only

      Isadora allows you to save your files as “run-only”, so that others can use the file but can only modify it specific ways. One place this might be useful is when Isadora is used to create installations that will be maintained by others. Making a document run-only means that only you will be able to modify the file.

      Jean-François 

    • BennnidB

      [ANSWERED] How to Copy/Paste Controller and Increment Ctrl ID Number?

      How To... ?
      • control panel renumber auto • • Bennnid
      3
      0
      Votes
      3
      Posts
      316
      Views

      BennnidB

      @mark got it thanks ( I was looking in Pref panel;-)

    • liminal_andyL

      Dynamic List Control

      How To... ?
      • control zoom zoomosc control panel virtual theatre • • liminal_andy
      18
      0
      Votes
      18
      Posts
      971
      Views

      markM

      @liminal_andy said:

       clever, I wonder if there is a simple way for me to re-use the JS code that culls the dynamic list to act upon a copy database, simultaneously pruning it so the list and the database remain in sync.

      There is. You just need to store the index of the items with the lines in JS, do the filtering, and then split the outputs to give a list of the indexes and a list of the text. You can then use the list of indexes to look up the item in the original list.

      Sending the test file that includes this functionality to you now.

      function main()
      {
          var outStringIndexes = "";
          var outStringLines = "";
          var inputLines = arguments[0].match(/[^\r\n]+/g);
          var i;
          var indexedLines = [ ];
          for (i=0; i<inputLines.length; i++) {
              var rec = [ i+1, inputLines[i] ];
              // print(rec[0] + " " + rec[1] + "\n");
              indexedLines.push(rec);
          }
          for (i=0; i<inputLines.length; i++) {
              var needle = arguments[1].toLowerCase();
              var haystack = indexedLines[i][1].toLowerCase();
              if (haystack.includes(needle)) {
                  outStringIndexes += indexedLines[i][0] + "\n";
                  outStringLines += indexedLines[i][1] + "\n";
              }
          }
          return [outStringIndexes, outStringLines];
      }

      Best Wishes,
      Mark

    • H

      [ANSWERED] How would you get a video clip to play over the live input, so that you just see the video clip?

      How To... ?
      • logic live feed control panel tracking color tracking • • hollyjw
      5
      0
      Votes
      5
      Posts
      498
      Views

      jfgJ

      @hollyjw

      it works. You must link the monitor ID to the video out of the video In Watcher.

      Click on video to get this panel and enter the ID of the Monitor Control (in the picture it is 1)

      best

      Jean-François

    • H

      [ANSWERED] button for stop movier player

      How To... ?
      • control control id control panel movie player speed • • Houssem
      3
      0
      Votes
      3
      Posts
      374
      Views

      H

      je vous remercie beaucoup pour votre réponse, je l'ai essayé et il fonctionne. 

    • JuriaanJ

      [ANSWERED] How do you copy Controls from one Isadora window to another other and preserve the Control ID numbers?

      How To... ?
      • control id control panel control view menu bar how to • • Juriaan
      4
      0
      Votes
      4
      Posts
      451
      Views

      WolandW

      @Juriaan said:

      Still wondering why this is default on and not off ?

      Because when it's off, if you duplicate/copy+paste Controls within a document because you want more of a particular Control or set of Controls, it doesn't increment the Control IDs of the new Controls. Copying Controls within a document and wanting them to get their own Control IDs is a more common use case than wanting to copy Controls between documents while preserving the Control IDs, which is why it's enabled by default.

      @Juriaan said:

      Mark as Solved.

       Just renamed the thread and moved it to "How To" 😉

    • Mr_JM

      extending control panel across more than one screen

      How To... ?
      • control panel display multiple output control control id • • Mr_J
      2
      1
      Votes
      2
      Posts
      447
      Views

      WolandW

      IDEA 1: TouchOSC + Tablet/iPad

      As I stated on the other post, you can move some of your controls to a tablet/iPad and use TouchOSC.

      IDEA 2: One Isadora Patch, Two Control Panel Scenes

      You can click in between Scenes in the Scene List to split the Control Panel, giving each Scene its own Control Panel. Using one or more background Scenes for your content, (activated with Activate Scene or Activate Scene Amount actors), you can use as many Scenes as you want to make individual Control Panels that all affect your content Scenes. Putting labeled Button Controls connected to Jump Actors will allow you to easily navigate between your Control Panel Scenes. Each Control Panel Scene needs to have an Enter Scene Trigger connected to an Activate Scene actor to activate your background content Scene. 

      Here's an example patch with multiple (primary [dark blue]) Control Panel Scenes and just one (secondary [light blue]) content Scene

      Scene 1 (Effects) & 2 (Snapshots) are separate Control Panels that both affect Scene 3 (Content)Scene 1: Video Effects Control (Primary [dark blue]) uses Control IDs 1-29 (30 and 31 are used to navigate between Control Panel Scenes)Scene 2: Snapshot Control (Primary [dark blue]) uses Control IDs 995-999 (30 and 31 are used to navigate between Control Panel Scenes)Scene 3: Content Scene (secondary [light blue]) uses Control IDs 1-29 and 995-999 (30 and 31 are used to navigate between Control Panel Scenes)

      If you use multiple content Scenes, you'll need to make another background Scene for scene control with Activate Scene Amount actors and Envelope Generator actors so that you can fade the different content Scenes in and out from each Control Panel Scene.

      Here's an example patch with multiple (primary [dark blue]) Control Panel Scenes and multiple (secondary [light blue]) content Scenes.

      Scene 1 (Effects) & 2 (Snapshots) are separate Control Panels that all affect Scenes 3, 4, & 5 (Content). Scene 1: (Video Effects Control) uses Control IDs 1-29 and 33-46 Scene 2: (Snapshot Control) uses Control IDs 995-999 Scene 3: Scene Control (secondary [light blue]) uses Control IDs 33-46 to adjust the intensity of the content scenesScene 3 is a background Scene, controlled by Scenes 1 & 2, that adjusts the intensity of the Content Scenes.Scene 4: Content Scene 1 (secondary [light blue]) uses Control IDs 1-29 and 995-999Scene 5: Content Scene 2 (secondary [light blue]) uses Control IDs 995-999 Control IDs 30 and 31 are used to navigate between Control Panel Scenes

      IDEA 3: Two separate Isadora Patches on Two Screens

      Control IDs work across Isadora patches, so if you've got:

      Display 1: VJ Patch (with actors using Control IDs 1-999) and Control Panel (Control IDs 1-450, for controlling your bin pickers)Display 2: A second Isadora Patch with your second Control Panel (Control IDs 451-999, for controlling your video effects)

      The split of Control IDS I gave was completely arbitrary, but this should work if you don't want to put it all in the same patch and use multiple Control Panel Scenes.

    • Mr_JM

      [ANSWERED] option to lock control panel?

      How To... ?
      • control panel • • Mr_J
      6
      0
      Votes
      6
      Posts
      709
      Views

      Mr_JM

      @Woland thanks for you responses, they're appreciated

      i haven't disabled snapshots since i use it often and i keep the status bar open so i can measure the load whilst live mixing. i know i can feed FPS to the control panel, is there a way to do the same with LOAD and CYC?

      i've been considering putting the video bin on a separate screen, maybe using bin picker and stretching the control panel over two screens... if this will work then would be easier than using Touch OSC and OSC over WiFi to extend the control panel.

      rgds, Mr J

    • tomthebomT

      [ANSWERED] Can a control element be turned off by an actor?

      How To... ?
      • control panel logic actors control id • • tomthebom
      4
      0
      Votes
      4
      Posts
      692
      Views

      MichelM

      @tomthebom

      Yes that's true it works without the trigger value actor, but only to activate the button, except you invert the values of the button. Trigger value gives you direct control to what state the button should be.

      Best Michel

    • Mr_JM

      [LOGGED] Thumbnail not black (continued...)

      Feature Requests
      • isadora 3 bin media mac control panel • • Mr_J
      4
      0
      Votes
      4
      Posts
      831
      Views

      DusXD

      A number of systems (youtube included) simple give you a predefined selection of thumbnails to pic from.
      So perhaps a default of position 0% as it is, but with the option of changing a thumbnail to use 10% 25% 50% or 75% as alternative thumbnails.

    • markM

      Guru Session #8: Cocktail Hour and Open Questions (April 10th, 2020 - 6pm CEST/5PM GMT/12pm EDT/9am PDT)

      Showcase
      • guru-sessions training tutorials actors control panel • • mark
      21
      0
      Votes
      21
      Posts
      3.4k
      Views

      mark_mM

      @mark

      Belated thanks for this session, and thanks so much for answering my questions. Really appreciated. Look forward to seeing you again when the Guru sessions resume!

    • markM

      Guru Session #4: The Control Panel (March 27th, 2020 - 6pm CET)

      Events
      • guru-sessions control panel training tutorials control • • mark
      6
      3
      Votes
      6
      Posts
      1.3k
      Views

      markM

      @martin_kemner said:

      ZIP-Download doesn't work, I get redirected to Youtube...

       The download link has been fixed. But this will also work: https://troikatronix.com/files...

    • FredF

      [LOGGED] Save view state

      Feature Requests
      • control panel actors • • Fred
      9
      6
      Votes
      9
      Posts
      1.5k
      Views

      mark_mM

      @mark

      Watching Guru Session #4 reminded me of this Feature Request, which although you agreed to implement this, has not yet been implemented.
      So I am just bumping this up!

      Thanks a lot

      Mark

    • gapworksG

      [ANSWERED] clock display

      How To... ?
      • clock timed events time actors control panel • • gapworks
      3
      0
      Votes
      3
      Posts
      1.3k
      Views

      WolandW

      @gapworks


      Also feel free to cannibalize the Patch I posted in this thread: https://community.troikatronix...

      Best wishes,

      Woland

    • bonemapB

      particle playground patch

      How To... ?
      • 3d player 3d particles data array control panel • • bonemap
      20
      5
      Votes
      20
      Posts
      6.0k
      Views

      D

      Yes, I would be happy to give you feedback.

      Don Ritter

      http://www.aesthetic-machinery...

    • craigwC

      [ANSWERED] Scene divider question

      How To... ?
      • scenes control panel • • craigw
      6
      0
      Votes
      6
      Posts
      2.1k
      Views

      montanaM

      @Michel 

      Thanks, Michel. Always good to see the simple things I think I know but don't : 0

    • WolandW

      [LOGGED] Control IDs Renumbering Options

      Feature Requests
      • control id control panel • • Woland
      3
      0
      Votes
      3
      Posts
      1.5k
      Views

      WolandW

      @bonemap

      I agree with your point about the "Control Title" attribute for each item in the Control Panel. I NEVER use it because it is only visible when editing.

      If it displayed along with the Control, I would use it 99.99% of the time, and would save me TONS of time making, typing, aligning, and otherwise dealing with separate Comment Controls items for each item in my Control Panels. 

      Thanks for the input! Please submit that as a feature request. I'd love to see it happen.

      Best wishes,

      Woland